home *** CD-ROM | disk | FTP | other *** search
/ AppleScript - The Beta Release / AppleScript - The Beta Release.iso / Developer Scripts / FileMaker Pro 2.0 AS Examples / Syntax Examples / Get Data examples < prev    next >
Text File  |  1992-11-25  |  426b  |  19 lines

  1. tell application "FileMaker Pro"
  2.     Get Data first Cell
  3.     Get Data last Cell
  4.     Cell 1 thru 5
  5.     Get Data every Cell
  6.     Record 2
  7.     Get Data middle Record
  8.     Record 1 thru 4
  9.     every Record
  10.     first Cell of window 2
  11.     Get Data last Cell of Database 2
  12.     Cell 1 thru 5 of document 2
  13.     every Cell of window "Test1"
  14.     Record 2 of Database "Test1"
  15.     middle Record of last window
  16.     Record 1 thru 4 of last document
  17.     every Record of last Database
  18. end tell
  19.